home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / tools / FLTK-1.0.6 / documentation / Makefile < prev    next >
Encoding:
Makefile  |  1999-06-12  |  3.5 KB  |  147 lines

  1. #
  2. # "$Id: Makefile,v 1.9.2.2 1999/06/12 13:53:23 mike Exp $"
  3. #
  4. # Documentation makefile for the Fast Light Tool Kit (FLTK).
  5. #
  6. # Copyright 1998-1999 by Bill Spitzak and others.
  7. #
  8. # This library is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU Library General Public
  10. # License as published by the Free Software Foundation; either
  11. # version 2 of the License, or (at your option) any later version.
  12. #
  13. # This library is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. # Library General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Library General Public
  19. # License along with this library; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. # USA.
  22. #
  23. # Please report all bugs and problems to "fltk-bugs@easysw.com".
  24. #
  25.  
  26. # Where to find HTMLDOC...
  27. HTMLDOC        =    htmldoc
  28.  
  29. # What media size to use:
  30.  
  31. # "Universal" size - minimum of US Letter and A4
  32. MEDIA        =    --size universal
  33.  
  34. # Standard US Letter
  35. #MEDIA        =    --size letter
  36.  
  37. # Standard A4
  38. #MEDIA        =    --size a4
  39.  
  40. # 7x8.5in (1/2 legal page) with reduced-size fonts
  41. #MEDIA        =    --size 7x8.5in --fontsize 9.0
  42.  
  43. # These are the HTML "source" files; the files are formatted in the
  44. # order listed...
  45. HTMLFILES    = \
  46.         preface.html \
  47.         intro.html \
  48.         basics.html \
  49.         common.html \
  50.         editor.html \
  51.         drawing.html \
  52.         events.html \
  53.         subclassing.html \
  54.         fluid.html \
  55.         opengl.html \
  56.         widgets.html \
  57.         Fl_Adjuster.html \
  58.         Fl_Box.html \
  59.         Fl_Browser.html \
  60.         Fl_Browser_.html \
  61.         Fl_Button.html \
  62.         Fl_Chart.html \
  63.         Fl_Check_Button.html \
  64.         Fl_Choice.html \
  65.         Fl_Clock.html \
  66.         Fl_Color_Chooser.html \
  67.         Fl_Counter.html \
  68.         Fl_Dial.html \
  69.         Fl_Double_Window.html \
  70.         Fl_End.html \
  71.         Fl_Float_Input.html \
  72.         Fl_Free.html \
  73.         Fl_Gl_Window.html \
  74.         Fl_Group.html \
  75.         Fl_Hold_Browser.html \
  76.         Fl_Input.html \
  77.         Fl_Input_.html \
  78.         Fl_Int_Input.html \
  79.         Fl_Light_Button.html \
  80.         Fl_Menu_.html \
  81.         Fl_Menu_Bar.html \
  82.         Fl_Menu_Button.html \
  83.         Fl_Menu_Item.html \
  84.         Fl_Menu_Window.html \
  85.         Fl_Multi_Browser.html \
  86.         Fl_Multiline_Input.html \
  87.         Fl_Multiline_Output.html \
  88.         Fl_Output.html \
  89.         Fl_Overlay_Window.html \
  90.         Fl_Pack.html \
  91.         Fl_Positioner.html \
  92.         Fl_Repeat_Button.html \
  93.         Fl_Return_Button.html \
  94.         Fl_Roller.html \
  95.         Fl_Round_Button.html \
  96.         Fl_Scroll.html \
  97.         Fl_Scrollbar.html \
  98.         Fl_Secret_Input.html \
  99.         Fl_Select_Browser.html \
  100.         Fl_Single_Window.html \
  101.         Fl_Slider.html \
  102.         Fl_Tabs.html \
  103.         Fl_Tile.html \
  104.         Fl_Timer.html \
  105.         Fl_Valuator.html \
  106.         Fl_Value_Input.html \
  107.         Fl_Value_Output.html \
  108.         Fl_Value_Slider.html \
  109.         Fl_Widget.html \
  110.         Fl_Window.html \
  111.         functions.html \
  112.         enumerations.html \
  113.         glut.html \
  114.         forms.html \
  115.         osissues.html \
  116.         license.html
  117.  
  118. all:    fltk.ps fltk.pdf fltk.d/index.html
  119.  
  120. clean:
  121.     rm -rf fltk.d
  122.     rm -f fltk.ps
  123.     rm -f fltk.pdf
  124.  
  125. depend:
  126.  
  127. install:
  128.  
  129. fltk.d/index.html: $(HTMLFILES)
  130.     @echo "Generating HTML documentation..."
  131.     @-mkdir fltk.d
  132.     @-rm -f fltk.d/*
  133.     @$(HTMLDOC) -d fltk.d -t html --verbose --toclevels 2 --bodycolor white --title FL.gif $(HTMLFILES)
  134.  
  135. fltk.ps: $(HTMLFILES)
  136.     @echo "Generating PostScript documentation..."
  137.     @$(HTMLDOC) -f fltk.ps -t ps2 --duplex --verbose --toclevels 2 --title FL.gif $(HTMLFILES)
  138.  
  139. fltk.pdf: $(HTMLFILES)
  140.     @echo "Generating PDF documentation..."
  141.     @rm -f fltk.pdf
  142.     @$(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --title FL.gif $(HTMLFILES)
  143.  
  144. #
  145. # End of "$Id: Makefile,v 1.9.2.2 1999/06/12 13:53:23 mike Exp $".
  146. #
  147.